home *** CD-ROM | disk | FTP | other *** search
/ EnigmA Amiga Run 1999 March / EnigmA AMIGA RUN 35 (1999)(G.R. Edizioni)(IT)[!][issue 1999-03].iso / earcd / devel / guigfxlib / examples / plasma / source / misc.h next >
C/C++ Source or Header  |  1999-01-01  |  947b  |  45 lines

  1.  
  2. #include <intuition/intuition.h>
  3.  
  4. #define    TASKPRIO                -2
  5.  
  6. #define GUIGFX_VERSION            8
  7.  
  8. #define    DEFAULT_WINTITLE        PROGNAME __VERSION__
  9.  
  10. #define    DEFAULT_MINWIDTH        100
  11. #define    DEFAULT_MINHEIGHT        100
  12. #define    DEFAULT_MAXWIDTH        -1
  13. #define    DEFAULT_MAXHEIGHT        -1
  14.  
  15. #define    HISTOGRAMTYPE            HSTYPE_12BIT_TURBO
  16.  
  17.  
  18. /*********************************************************************
  19. ----------------------------------------------------------------------
  20.  
  21.     structures
  22.  
  23. ----------------------------------------------------------------------
  24. *********************************************************************/
  25.  
  26. struct mvwindow
  27. {
  28.     struct Screen *screen;
  29.     struct Window *window;
  30.  
  31.     struct MsgPort *appmsgport;
  32.     struct AppWindow *appwindow;
  33.     ULONG appSignal;
  34.     ULONG idcmpSignal;
  35.  
  36.     UWORD winleft, wintop;
  37.     UWORD winwidth, winheight;
  38.     UWORD innerwidth, innerheight;
  39.     UWORD innerleft, innertop;
  40.  
  41.     WORD otherwinpos[4];            /* alternate window position x,y,w,h */
  42.  
  43. };
  44.  
  45.